Found 317 results for "docs fields control"

The search executed in 0.001964683 seconds. That's fast.

Gitana / 4.0 / Forms / API / Callbacks

Callbacks Alpaca provides several places where you can hook in callbacks. Events - events are raised when the user interacts with fields. You can register callbacks to handle these events, adjust field state or other operations. Observables - each field maintains an observable that you can subscribe to. Subscribing to an observable means that you're listening for changes to its value. You can also use observables to interrogate and find values of fields within namespaces. This lets you find valu

Score: 3.55652

Gitana / 4.0 / Forms / Fields / Date Time Field

Date Time Field The datetime field. The DateTime Field builds on the standard Date Field and leverages the Bootstrap DateTime plugin under the hood. You can learn more about this plugin on its GitHub page: https://github.com/Eonasdan/bootstrap-datetimepicker. For more information on date and time formatting strings, see the Moment.js documentation: http://momentjs.com/docs/. The default date time format is assumed to be MM/DD/YYYY HH:mm:ss. This is an American approach to the date with a 24-hour

Score: 3.5482883

Gitana / 4.0 / Forms / Fields / CKEditor Field

CKEditor Field The ckeditor field. The CK Editor field renders the CK editor control that allows users to visually work with HTML and save the results back into a text property. Properties Title CK Editor Description Provides an instance of a CK Editor control for use in editing HTML. Field Type ckeditor Base Field Type textarea Schema Property Type Default Description allowOptionalEmpty Allows this non-required field to validate when the value is empty autocomplete string Allows you to specify

Score: 3.5458522

Gitana / 4.0 / Forms / API / Ordering

Ordering The default rendering engine that Alpaca utilizes will render your fields in the order that they are described within your schema. {% raw %} {% endraw %} Use the order option to specify rendering order The precise order of properties can be configured using the order option. {% raw %} {% endraw %} Use a Template to layout fields See Templates for more information on using custom templates to take full control over the layout of your forms.

Score: 3.5372386

Gitana / 4.0 / Forms / API / Templates

Templates Alpaca includes an advanced templating system that is driven by views. You can create your own views and templates at compile time (when you actually build Alpaca) or you can override them on the fly at runtime. Templates can be supplied either as inline functions (which are discovered if you've built them at compile time), as URLs (which are loaded at runtime), as DOM references (which are then sourced) or as HTML strings. In the latter two cases, the templates are acquired and then c

Score: 3.5025058

Gitana / 4.0 / Forms / API / Events

Events Alpaca allows you to bind event handlers to containers and individual fields that are triggered either directly or via propagation. Event handlers can be registered in the following ways: Configuration driven by specifying functions within Alpaca options Using the postRender method and calling on() for individual fields By extending Alpaca Field implementation classes This document covers how to set these up. Event Types In general, event handlers are invoked with the this reference set t

Score: 3.4691541

Is there a programmatic way to add more content to workflows?

There is a programmatic way to add more content to workflows once they're in-flight. However, once the workflow is in-flight, the workflow process instance isn't the correct place to add things. Instead, you'd want to add new content to a workflow task. Essentially, a workflow is made up of a series of tasks. When the workflow transitions from one node to another in the workflow model, it instantiates a new task and the task holds the state (and references to documents) for that phase of the wor

Score: 3.4653962

Gitana / 4.0 / Forms / Fields / Option Tree Field

Option Tree Field The optiontree field. Properties Title Option Tree Description Text field for lowercase text Field Type optiontree Base Field Type text Schema Property Type Default Description allowOptionalEmpty Allows this non-required field to validate when the value is empty autocomplete string Allows you to specify the autocomplete attribute for the underlying input control whether or not field should have autocomplete enabled. data object Allows you to specify a key/value map of data attr

Score: 3.4269419

Gitana / 3.2 / Guide / Guide / Forms / Fields / Related Content

Related Content ID: related-content The related-content field type renders an upload field that is pre-configured to upload assets and store them as standalone document nodes within the content graph. This is useful, say, if you wanted to let end users upload images and store them in an /Images folder. Sample configuration: { "type": "related-content", "uploadPath": "/Images" } The related content control should be modeled on top of either an object or an array field. This is very simil

Score: 3.184977

Gitana / 4.0 / Forms / CMS / Fields / Related Content

Related Content ID: related-content The related-content field type renders an upload field that is pre-configured to upload assets and store them as standalone document nodes within the content graph. This is useful, say, if you wanted to let end users upload images and store them in an /Images folder. Sample configuration: { "type": "related-content", "uploadPath": "/Images" } The related content control should be modeled on top of either an object or an array field. This is very simil

Score: 3.184977

Gitana / 4.0 / Forms / API / Layouts

Layouts Alpaca features both automatic and layout-driven mechanisms for placing your fields onto a page. The automatic mechanism simply walks through your fields in the order they are expressed in schema and places them one by one in a stacked order. The layout-driven mechanism allows you to provide a layout template that finely describes where your fields should be placed using DOM-driven injection. To use a layout, you simply need to provide a view that has a layout block. The layout block def

Score: 3.1421676

How to Retrieve content by their document library path

You can retrieve content by their document library path using the CMS API using the Node API. For example, you can paginate through the children of a node using this call: http://api.cloudcms.com/docs#!/node/get_repositories_repositoryId_branches_branchId_nodes_nodeId_children GET /repositories/{repositoryId}/branches/{branchId}/nodes/{nodeId}/children?path={path} In this case, you would set "nodeId" to the value "root" to indicate the root node. And then use "path" to describe the offset. If yo

Score: 3.069357

Gitana / 4.0 / Forms / API / Wizards

Wizards Alpaca lets you arrange your form into simple multi-step wizards along with buttons for previous, next and submit using a simple configuration-driven approach. Wizards are essentially fields within a single form that are split across multiple DIVS, letting you orchestrate a single and non-conditional flow path as DIVs are hidden and shown in sequence. In addition, wizards optionally allow for configuration-driven options to assert the validation state of the set of shown fields before al

Score: 3.0365186

Can your CMS do this?

This is not going to be a list of features in Cloud CMS, that to be honest, you righfully expect in a CMS: API, versioning, workflow, Content model, Content entry forms,.. For a bit of fun, I started thinking “what really makes Cloud CMS better than your CMS” embracing my school boy mentality. 1. SaaS and/or On-Premise Cloud CMS is avaible as a SaaS product and OnPremise. Docker containers have allowed us to distribute the Cloud CMS product easily for On-Premise/Private Cloud installation. Whils

Score: 3.0290422

Gitana / 3.2 / Guide / Guide / User Interface / Embed Media In CKEditor / Advanced Usages / Extend Media Types

Extend Media Types The out of the box media types on CloudCMS are Youtube, Vimeo, Brightcove and Soundcloud. However, we grant you the ability to introduce any other media types. Follow this tutorial to learn how. (Code is involved!) Create a xxx-link.js File Note: Take a look at these files to get a sense of it. getSchema() and getOptions() These two methods allow you to create a form with specific fields to configure for templates of this type. /** * @override */ getSchema: fun

Score: 2.958799

Gitana / 4.0 / User Interface / Embedded Media / Advanced Usages / Extend Media Types

Extend Media Types The out of the box media types on CloudCMS are Youtube, Vimeo, Brightcove and Soundcloud. However, we grant you the ability to introduce any other media types. Follow this tutorial to learn how. (Code is involved!) Create a xxx-link.js File Note: Take a look at these files to get a sense of it. getSchema() and getOptions() These two methods allow you to create a form with specific fields to configure for templates of this type. /** * @override */ getSchema: fun

Score: 2.958799

Gitana / 3.2 / Guide / Guide / User Interface / Add-ons

Add-ons Cloud CMS Add-Ons let you enhance your editorial user interface with new features and capabilities that integrate to popular third-party services like YouTube, Vimeo and Google Docs. Add-ons provision your editorial environment with things like: new form field types that integrate to third-party services new user interface pages for browsing and working with media from third-party services new actions or rules to enhance your repository's business logic new content types, associations an

Score: 2.761934

Gitana / 4.0 / User Interface / Add-ons / Overview

Add-ons Cloud CMS Add-Ons let you enhance your editorial user interface with new features and capabilities that integrate to popular third-party services like YouTube, Vimeo and Google Docs. Add-ons provision your editorial environment with things like: new form field types that integrate to third-party services new user interface pages for browsing and working with media from third-party services new actions or rules to enhance your repository's business logic new content types, associations an

Score: 2.761934

Gitana / 4.0 / Forms / API / Observables

Observables Alpaca maintains observables that can be subscribed to by listeners that want to listen for changes to values in the form. An observable exists for every field and registration can be either programmatic or driven from configuration. In general, if you're sticking to straight JSON-schema, you won't find much use for observables. JSON schema is fairly fixed in terms of its interdependency of fields (see dependencies). Rather, observables are most useful when you really want to take fu

Score: 2.755596

Gitana / 4.0 / Forms / API / Dependencies

Dependencies JSON Schema provides support for dependencies as a means for describing dependencies between fields. Using dependencies, you can establish that property2 should be supplied when property1 is supplied. Alpaca supports both JSON Schema v3 and v4 syntax for declaring dependencies. We recommend using JSON Schema v4 syntax. In JSON Schema v4, a single dependencies block within the container object stores key/values which consist of the ID of the property (key) and an array of property ID

Score: 2.730936

Definitions for Date format

Our definitions are based on JSON schema and, as such, the default is to use strings for dates. The date controls in our forms engine let you customize the format string so that you can store ISO 8601 or other formats (perhaps simplified formats) as per your preference. The advantage here is simplicity with these controls and compatibility with JSON schema. The disadvantage is that MongoDB provides a lot of very powerful capabilities for range query and sorting that do not play as nicely with th

Score: 2.6876273

Content Entry Forms Example

Cloud CMS lets you easily design and deploy forms for your web applications and content contributors. In this blog entry, we’ll walk through how you can do this within the Cloud CMS user interface. In this example, we’ll create a form that allows editors to create City Guide information. Note: in the Cloud CMS Trial there is a City Guide Content definition which can be used as a starting point or as a reference for this example. Add a Definition The Content Definitions can be found in the Cloud

Score: 2.6530185

Gitana / 3.2 / Guide / Guide / Query

Query Cloud CMS provides SQL-like, structured query for all of your content. The platform uses MongoDB under the hood to store the JSON for your content. MongoDB offers a powerful, unmatched query engine so that you can execute complex lookups of your content to support both your editorial and runtime application needs. The platform also offers "composite" query operations which let you layer MongoDB queries on top of Elastic Search DSL searches and traversals around node objects. Cloud CMS auto

Score: 2.641581

Gitana / 4.0 / Data Engine / Discovery / Query

Query Cloud CMS provides SQL-like, structured query for all of your content. The platform uses MongoDB under the hood to store the JSON for your content. MongoDB offers a powerful, unmatched query engine so that you can execute complex lookups of your content to support both your editorial and runtime application needs. The platform also offers "composite" query operations which let you layer MongoDB queries on top of Elastic Search DSL searches and traversals around node objects. Cloud CMS auto

Score: 2.641581

Gitana / 4.0 / Forms / Fields / Text Field

Text Field The text field is used to represent text within a form. Properties Title Text Description Renders object items into a table row Field Type text Base Field Type control Schema Property Type Default Description allowOptionalEmpty Allows this non-required field to validate when the value is empty autocomplete string Allows you to specify the autocomplete attribute for the underlying input control whether or not field should have autocomplete enabled. data object Allows you to specify a k

Score: 2.6402352